home *** CD-ROM | disk | FTP | other *** search
/ PC Home 138 / PC Home issue 138.iso / Software / Essentials / Netscape / nim.xpi / bin / chrome / aim.jar / content / aim / chatRoomInfo.js < prev    next >
Encoding:
Text File  |  2000-04-11  |  508 b   |  14 lines

  1. var ChatRoomName=window.arguments[0]
  2. var Language=window.arguments[1]
  3. var MaxMessageLength=window.arguments[2]
  4. var Created = window.arguments[3]
  5.  
  6.  
  7. function onChatRoomInfoWinLoad(){
  8.     document.getElementById("roomnamevalue").setAttribute("value",ChatRoomName)
  9.     document.getElementById("languagevalue").setAttribute("value",Language)
  10.     document.getElementById("maxmessagelengthvalue").setAttribute("value",MaxMessageLength)
  11.     document.getElementById("createdvalue").setAttribute("value",Created)
  12.     
  13. }
  14.